home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / config / joystick.cs < prev   
Encoding:
Text File  |  1999-09-14  |  906 b   |  22 lines

  1. // You can use the console command listInputDevices(); to list out your
  2. // devices.  If you have a trackball or something, add an inputActivate for it
  3. // like below.
  4.  
  5. inputActivate(joystick0);
  6.  
  7. EditActionMap("playMap.sae");
  8.  
  9. // movement axis
  10. bindAction(joystick0, xAxis0, TO, IDACTION_STRAFE, Center, DeadZone, 0.04, Scale, 100);
  11. bindAction(joystick0, yAxis0, TO, IDACTION_RUN, Center, DeadZone, 0.04, Scale, 100);
  12.  
  13. // The following lines are for panther XL or trackball people
  14. // thanks Aslan for the info.  Uncomment the bindAction lines to activate.
  15.  
  16. // To change the sensitivity of the trackball, just edit the 0.6s at the end of each line
  17. // increase for more sensitivity, decrease for less.
  18.  
  19. // bindAction(joystick0, slider0, TO, IDACTION_YAW, Center, DeadZone, 0.01, Scale, 0.6);
  20. // bindAction(joystick0, slider1, TO, IDACTION_PITCH, Flip, Center, DeadZone, 0.01, Scale, 0.6);
  21.  
  22.